home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / lame_src / fft.h < prev    next >
C/C++ Source or Header  |  2000-01-01  |  192b  |  11 lines

  1. #ifndef FFT_H
  2. #define FFT_H
  3.  
  4. #include "encoder.h"
  5.  
  6. void fft_long(FLOAT x_real[BLKSIZE], int, short **);
  7. void fft_short(FLOAT x_real[3][BLKSIZE_s], int, short **);
  8. void init_fft(void);
  9.  
  10. #endif
  11.